home *** CD-ROM | disk | FTP | other *** search
/ By Popular Request 2.0 / By Popular Request 2.0 (Arsenal Computer).ISO / amiga_3 / ezbbs221.lha / c / SetEazymailAll.sh < prev    next >
Text File  |  1995-04-09  |  745b  |  36 lines

  1. # cshell script
  2.  
  3. #resident `which unspace`
  4. set _except "20;abortline"
  5. cd MB_USER:
  6.  
  7. if -f UULIB:Aliases
  8.     echo Installing EazyBBS aliases in UULIB:Aliases ...
  9.     foreach user ( * ) {
  10.         set username = `mb:c/unspace $user`
  11.         set _lasterr 0
  12.         Search >nil: UULIB:Aliases $username": " QUIET
  13.         if -r $_lasterr 0 >
  14.             echo Installing alias $username
  15.             echo $username: \"\|mail2eazy $user\" >>UULIB:Aliases
  16.         endif
  17.     }
  18. else
  19.     echo Installing EazyBBS folders in UUMAIL: ...
  20.     foreach user ( * ) {
  21.         set username = `mb:c/unspace $user`
  22.         if -nf uumail:$username
  23.             echo Installing uumail:$username
  24.             echo forward to \|mail2eazy \"$user\" >uumail:$username
  25.         endif
  26.     }
  27. endif
  28.  
  29. dswap
  30. unset _except
  31. unset user
  32. unset username
  33. #resident -r unspace >nil:
  34. echo Done.
  35.  
  36.